home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / dev / c / vbcc.lha / vbcc / targets / m68k-amigaos / include / setjmp.h < prev    next >
C/C++ Source or Header  |  2001-04-28  |  166b  |  12 lines

  1. #pragma begin_header
  2. #ifndef __SETJMP_H
  3. #define __SETJMP_H 1
  4.  
  5. typedef int jmp_buf[13];
  6.  
  7. int setjmp (jmp_buf);
  8. void longjmp (jmp_buf, int);
  9.  
  10. #endif
  11. #pragma end_header
  12.